-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat:Add user authentication feature with JWT support #34
Conversation
WalkthroughThe changes involve a comprehensive update to the Cohere SDK documentation, focusing on dataset creation and fine-tuning. Key modifications include renaming datasets from "prompt-completion-dataset" to "chat-dataset," adjusting dataset types to reflect a shift towards chat applications, and altering finetuned model names accordingly. These updates are consistent across multiple programming languages, including Go, Python, Java, and TypeScript. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant SDK
participant Dataset
participant Model
User->>SDK: Request to create dataset
SDK->>Dataset: Create "chat-dataset"
User->>SDK: Request to finetune model
SDK->>Model: Use "chat-ft" with "chat-dataset"
Model-->>SDK: Model ready for chat applications
SDK-->>User: Return finetuned model
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- src/libs/Cohere/openapi.yaml (7 hunks)
Additional comments not posted (7)
src/libs/Cohere/openapi.yaml (7)
4559-4568
: LGTM!The code changes are approved. The dataset names and types have been updated consistently across the Go, Python, and Java SDK examples to reflect the new focus on chat-based applications.
6048-6055
: LGTM!The code changes are approved. The fine-tuned model name and base model type in the example response have been updated to align with the new focus on chat-based models.
6160-6160
: LGTM!The code change is approved. The base model type has been updated to "BASE_TYPE_CHAT" in the settings object for creating a fine-tuned model, aligning with the new focus on chat-based models.
6210-6216
: LGTM!The code changes are approved. The base model types have been updated consistently across the Java, Go, and TypeScript SDK examples to use chat-specific types, aligning with the new focus on chat-based models.
6225-6225
: LGTM!The code change is approved. The base model type has been updated to "BASE_TYPE_CHAT" in the cURL example for creating a fine-tuned model, aligning with the new focus on chat-based models.
6337-6337
: LGTM!The code change is approved. The base model type has been updated to use a chat-specific type in the Java SDK example for updating a fine-tuned model, aligning with the new focus on chat-based models.
6380-6387
: LGTM!The code changes are approved. The fine-tuned model name and base model type in the example response for updating a fine-tuned model have been updated to align with the new focus on chat-based models.
Summary by CodeRabbit
New Features
Documentation